From a8bee2984cb831650e1d7e03a57a1799914f32d8 Mon Sep 17 00:00:00 2001 From: HiveGames-OSS Date: Sun, 25 Aug 2024 10:44:43 +0100 Subject: [PATCH 01/23] Use fs-extra to avoid issues with copying too many files --- app/electron/package.json | 5 +++-- app/electron/src/session.js | 9 ++++----- app/package-lock.json | 36 ++++++++++++++++++++++++++++++++++++ 3 files changed, 43 insertions(+), 7 deletions(-) diff --git a/app/electron/package.json b/app/electron/package.json index c5a467e..e2560d0 100644 --- a/app/electron/package.json +++ b/app/electron/package.json @@ -49,7 +49,8 @@ "dependencies": { "archiver": "^7.0.1", "electron-dl": "^4.0.0", - "jszip": "^3.10.1", - "electron-log": "^5.1.7" + "electron-log": "^5.1.7", + "fs-extra": "^11.2.0", + "jszip": "^3.10.1" } } diff --git a/app/electron/src/session.js b/app/electron/src/session.js index 1411056..4043a08 100644 --- a/app/electron/src/session.js +++ b/app/electron/src/session.js @@ -1,8 +1,7 @@ import {spawn} from "child_process" import {app} from "electron" import path from "path" -import fs from "fs/promises" -import fsSync from "fs" +import fs from "fs-extra" import jszip from "jszip" import {copyRecursive, countFiles, zipRecursive} from "./util.js"; import {download} from "electron-dl"; @@ -47,12 +46,12 @@ export class Session { let cliDirectory = executable ?? path.join(path.dirname(app.getAppPath()), "chunker-cli"); // Use the bin directory if it's present for the executable - if (fsSync.existsSync(path.join(cliDirectory, "bin"))) { + if (fs.existsSync(path.join(cliDirectory, "bin"))) { cliDirectory = path.join(cliDirectory, "bin"); } // Find the executable for this platform - let files = fsSync.readdirSync(cliDirectory, {withFileTypes: true}) + let files = fs.readdirSync(cliDirectory, {withFileTypes: true}) .filter(file => file.isFile() && file.name.startsWith("chunker-cli") && !file.name.endsWith(".ico") && !file.name.endsWith("-unshaded.jar")); // Close if there is no executable (this is a packaging issue) @@ -119,7 +118,7 @@ export class Session { // Setup output path this._sessionPath = path.join(app.getPath("temp"), "chunker-electron", this._sessionID); - fsSync.mkdirSync(this._sessionPath, {recursive: true}); + fs.mkdirSync(this._sessionPath, {recursive: true}); } close(errorCode) { diff --git a/app/package-lock.json b/app/package-lock.json index 56cab3d..eb3691f 100644 --- a/app/package-lock.json +++ b/app/package-lock.json @@ -27,6 +27,7 @@ "archiver": "^7.0.1", "electron-dl": "^4.0.0", "electron-log": "^5.1.7", + "fs-extra": "^11.2.0", "jszip": "^3.10.1" }, "devDependencies": { @@ -35,6 +36,41 @@ "git-last-commit": "^1.0.1" } }, + "electron/node_modules/fs-extra": { + "version": "11.2.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-11.2.0.tgz", + "integrity": "sha512-PmDi3uwK5nFuXh7XDTlVnS17xJS7vW36is2+w3xcv8SVxiB4NyATf4ctkVY5bkSjX0Y4nbvZCq1/EjtEyr9ktw==", + "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", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", + "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", + "license": "MIT", + "dependencies": { + "universalify": "^2.0.0" + }, + "optionalDependencies": { + "graceful-fs": "^4.1.6" + } + }, + "electron/node_modules/universalify": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.1.tgz", + "integrity": "sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==", + "license": "MIT", + "engines": { + "node": ">= 10.0.0" + } + }, "node_modules/@alloc/quick-lru": { "version": "5.2.0", "resolved": "https://registry.npmjs.org/@alloc/quick-lru/-/quick-lru-5.2.0.tgz", From f744873953c243b0563849b782d74b35de90dfdf Mon Sep 17 00:00:00 2001 From: HiveGames-OSS Date: Sun, 25 Aug 2024 10:45:35 +0100 Subject: [PATCH 02/23] Fix dye component not being nested correctly for Java --- .../itemstack/JavaComponentItemStackResolver.java | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/cli/src/main/java/com/hivemc/chunker/conversion/encoding/java/base/resolver/itemstack/JavaComponentItemStackResolver.java b/cli/src/main/java/com/hivemc/chunker/conversion/encoding/java/base/resolver/itemstack/JavaComponentItemStackResolver.java index f57a139..8183a15 100644 --- a/cli/src/main/java/com/hivemc/chunker/conversion/encoding/java/base/resolver/itemstack/JavaComponentItemStackResolver.java +++ b/cli/src/main/java/com/hivemc/chunker/conversion/encoding/java/base/resolver/itemstack/JavaComponentItemStackResolver.java @@ -102,9 +102,10 @@ public Optional read(@NotNull CompoundTag value) { lore = loreString.stream().map(JsonTextUtil::fromJSON).collect(Collectors.toList()); } - // Load color if it's present - if (tag.contains("minecraft:dyed_color")) { - color = new Color(tag.getInt("minecraft:dyed_color")); + // Load color from the compound if it's present + CompoundTag dyedColor = tag.getCompound("minecraft:dyed_color"); + if (dyedColor != null && dyedColor.contains("rgb")) { + color = new Color(dyedColor.getInt("rgb")); } // Build the display if one of the components is present @@ -134,7 +135,9 @@ public void write(@NotNull CompoundTag value, @NotNull ChunkerItemDisplay chunke // Color if (chunkerItemDisplay.color() != null) { - components.put("minecraft:dyed_color", chunkerItemDisplay.color().getRGB()); + CompoundTag dyedColor = new CompoundTag(); + dyedColor.put("rgb", chunkerItemDisplay.color().getRGB()); + components.put("minecraft:dyed_color", dyedColor); } } }); From 173187f91e13d2dbd0d3f9016f285e77723487ab Mon Sep 17 00:00:00 2001 From: HiveGames-OSS Date: Sun, 25 Aug 2024 10:46:08 +0100 Subject: [PATCH 03/23] Make Java section Y more lenient for when other tools have been used --- .../java/base/reader/JavaColumnReader.java | 17 +++++++++++++++-- 1 file changed, 15 insertions(+), 2 deletions(-) diff --git a/cli/src/main/java/com/hivemc/chunker/conversion/encoding/java/base/reader/JavaColumnReader.java b/cli/src/main/java/com/hivemc/chunker/conversion/encoding/java/base/reader/JavaColumnReader.java index c3ad874..66f5cbb 100644 --- a/cli/src/main/java/com/hivemc/chunker/conversion/encoding/java/base/reader/JavaColumnReader.java +++ b/cli/src/main/java/com/hivemc/chunker/conversion/encoding/java/base/reader/JavaColumnReader.java @@ -17,6 +17,8 @@ import com.hivemc.chunker.nbt.tags.array.ByteArrayTag; import com.hivemc.chunker.nbt.tags.collection.CompoundTag; import com.hivemc.chunker.nbt.tags.collection.ListTag; +import com.hivemc.chunker.nbt.tags.primitive.ByteTag; +import com.hivemc.chunker.nbt.tags.primitive.IntTag; import com.hivemc.chunker.scheduling.task.Task; import com.hivemc.chunker.scheduling.task.TaskWeight; @@ -253,8 +255,19 @@ protected void readChunks(ChunkerColumn column) { // Loop through each chunk in the column for (CompoundTag section : sections) { - if (!section.contains("Y") || section.size() <= 1) continue; - byte y = section.getByte("Y"); + Tag tag = section.get("Y"); + if (tag == null || section.size() <= 1) continue; + + // Get the Y index of the sub-chunk + byte y; + if (tag instanceof ByteTag byteYTag) { + y = byteYTag.getValue(); + } else if (tag instanceof IntTag intYTag) { + // Allow Y to be an int, Minecraft still parses this and some software uses integers + y = intYTag.getBoxedValue().byteValue(); + } else { + throw new IllegalArgumentException("Invalid Section Y NBT Tag: " + tag); + } // Create the chunk and add it to the column ChunkerChunk chunk = new ChunkerChunk(y); From cd04feb80cb7eae9107025904e175e4401609d0f Mon Sep 17 00:00:00 2001 From: HiveGames-OSS Date: Sun, 25 Aug 2024 10:46:21 +0100 Subject: [PATCH 04/23] Update junit to 5.11.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 89d447a..d6ff573 100644 --- a/gradle/libs.versions.toml +++ b/gradle/libs.versions.toml @@ -13,7 +13,7 @@ lz4 = "1.3.0" jetbrains-annotations = "24.1.0" # JUnit -junit = "5.10.3" +junit = "5.11.0" # Plugins shadow = "8.1.1" From 1a8f2416e551b429f2bb4995c625b59cde893999 Mon Sep 17 00:00:00 2001 From: HiveGames-OSS Date: Sun, 25 Aug 2024 15:13:03 +0100 Subject: [PATCH 05/23] Return null when LongArrayTag is used for empty lists --- .../chunker/nbt/tags/array/ByteArrayTag.java | 9 ++++ .../chunker/nbt/tags/array/IntArrayTag.java | 9 ++++ .../chunker/nbt/tags/array/LongArrayTag.java | 9 ++++ .../nbt/tags/collection/CompoundTag.java | 23 +++++++-- .../nbt/tags/array/ByteArrayTagTests.java | 19 +++++++ .../nbt/tags/array/IntArrayTagTests.java | 19 +++++++ .../nbt/tags/array/LongArrayTagTests.java | 19 +++++++ .../nbt/tags/collection/CompoundTagTests.java | 50 +++++++++++++++++++ 8 files changed, 153 insertions(+), 4 deletions(-) diff --git a/cli/src/main/java/com/hivemc/chunker/nbt/tags/array/ByteArrayTag.java b/cli/src/main/java/com/hivemc/chunker/nbt/tags/array/ByteArrayTag.java index b605b05..0753095 100644 --- a/cli/src/main/java/com/hivemc/chunker/nbt/tags/array/ByteArrayTag.java +++ b/cli/src/main/java/com/hivemc/chunker/nbt/tags/array/ByteArrayTag.java @@ -115,4 +115,13 @@ public String toSNBT() { public void setValue(byte @Nullable [] value) { this.value = value; } + + /** + * Get the number of entries in the array. + * + * @return the number of entries. + */ + public int length() { + return value == null ? 0 : value.length; + } } diff --git a/cli/src/main/java/com/hivemc/chunker/nbt/tags/array/IntArrayTag.java b/cli/src/main/java/com/hivemc/chunker/nbt/tags/array/IntArrayTag.java index d76ae69..c3b645c 100644 --- a/cli/src/main/java/com/hivemc/chunker/nbt/tags/array/IntArrayTag.java +++ b/cli/src/main/java/com/hivemc/chunker/nbt/tags/array/IntArrayTag.java @@ -119,4 +119,13 @@ public String toSNBT() { public void setValue(int @Nullable [] value) { this.value = value; } + + /** + * Get the number of entries in the array. + * + * @return the number of entries. + */ + public int length() { + return value == null ? 0 : value.length; + } } diff --git a/cli/src/main/java/com/hivemc/chunker/nbt/tags/array/LongArrayTag.java b/cli/src/main/java/com/hivemc/chunker/nbt/tags/array/LongArrayTag.java index f36d153..e804c66 100644 --- a/cli/src/main/java/com/hivemc/chunker/nbt/tags/array/LongArrayTag.java +++ b/cli/src/main/java/com/hivemc/chunker/nbt/tags/array/LongArrayTag.java @@ -119,4 +119,13 @@ public String toSNBT() { public void setValue(long @Nullable [] value) { this.value = value; } + + /** + * Get the number of entries in the array. + * + * @return the number of entries. + */ + public int length() { + return value == null ? 0 : value.length; + } } diff --git a/cli/src/main/java/com/hivemc/chunker/nbt/tags/collection/CompoundTag.java b/cli/src/main/java/com/hivemc/chunker/nbt/tags/collection/CompoundTag.java index ec266e7..4b65f24 100644 --- a/cli/src/main/java/com/hivemc/chunker/nbt/tags/collection/CompoundTag.java +++ b/cli/src/main/java/com/hivemc/chunker/nbt/tags/collection/CompoundTag.java @@ -663,18 +663,33 @@ public , V> ListTag getList(String name, Class listTag /** * Get a ListTag from the key-value based storage, if it is not the right type it will throw a ClassCastException and if the * listTagType doesn't match it will throw an IllegalArgumentException. + * Note: LongArrayTag is used as an empty list in some version of Java edition, this method will return null instead + * of throwing an exception for this case. * * @param name the name to search for. * @param listTagType the type of the list values to expect. * @param defaultValue the value to return if the name wasn't found. * @param the type of each tag in the list. * @param the boxed value type of each tag in the list. - * @return the tag if it was found otherwise it will throw an IllegalArgumentException. + * @return the tag if it was found otherwise defaultValue, if the type is wrong it will throw an IllegalArgumentException. */ @SuppressWarnings("unchecked") public , V> ListTag getList(String name, Class listTagType, ListTag defaultValue) { - ListTag listTag = get(name, ListTag.class); - if (listTag == null) return defaultValue; + Tag tag = get(name, Tag.class); + + // Check if the tag is a list + if (!(tag instanceof ListTag)) { + // Check if the tag isn't present or if it's a long tag which we'll also count as not present. + if (tag == null || tag instanceof LongArrayTag longArrayTag && longArrayTag.length() == 0){ + return defaultValue; + } + + // Invalid list tag type + throw new IllegalArgumentException("Unexpected tag type " + tag + ", expected ListTag."); + } + + // Check the type of the list tag + ListTag listTag = (ListTag) tag; if (listTag.getListType() != TagType.END && listTag.getListType() != null && !Objects.equals(listTag.getListType().getTagClass(), listTagType)) { throw new IllegalArgumentException("Unexpected list type " + name); } @@ -704,7 +719,7 @@ public , V> List getListValues(String name, Class listTag * @param defaultValue the value to return if the name wasn't found. * @param the type of each tag in the list. * @param the boxed value type of each tag in the list. - * @return the tag if it was found otherwise it will throw an IllegalArgumentException. + * @return the tag if it was found otherwise defaultValue, if the type is wrong it will throw an IllegalArgumentException. */ public , V> List getListValues(String name, Class listTagType, List defaultValue) { ListTag listTag = getList(name, listTagType, null); diff --git a/cli/src/test/java/com/hivemc/chunker/nbt/tags/array/ByteArrayTagTests.java b/cli/src/test/java/com/hivemc/chunker/nbt/tags/array/ByteArrayTagTests.java index 9977866..9dca5b7 100644 --- a/cli/src/test/java/com/hivemc/chunker/nbt/tags/array/ByteArrayTagTests.java +++ b/cli/src/test/java/com/hivemc/chunker/nbt/tags/array/ByteArrayTagTests.java @@ -10,6 +10,7 @@ import java.util.stream.Stream; import static org.junit.jupiter.api.Assertions.assertArrayEquals; +import static org.junit.jupiter.api.Assertions.assertEquals; /** * Tests for the ByteArrayTag. @@ -46,4 +47,22 @@ protected void testLengthProtectionNamed() throws IOException { ByteArrayTag tag = new ByteArrayTag(new byte[ByteArrayTag.MAX_ARRAY_LENGTH + 1]); assertDecodeException(new TagWithName<>("hello", tag), IllegalArgumentException.class); } + + @Test + protected void testLength() throws IOException { + ByteArrayTag tag = new ByteArrayTag(new byte[5]); + assertEquals(tag.length(), 5); + } + + @Test + protected void testLengthEmpty() throws IOException { + ByteArrayTag tag = new ByteArrayTag(new byte[0]); + assertEquals(tag.length(), 0); + } + + @Test + protected void testLengthNull() throws IOException { + ByteArrayTag tag = new ByteArrayTag(); + assertEquals(tag.length(), 0); + } } diff --git a/cli/src/test/java/com/hivemc/chunker/nbt/tags/array/IntArrayTagTests.java b/cli/src/test/java/com/hivemc/chunker/nbt/tags/array/IntArrayTagTests.java index 1ac3953..20d5c97 100644 --- a/cli/src/test/java/com/hivemc/chunker/nbt/tags/array/IntArrayTagTests.java +++ b/cli/src/test/java/com/hivemc/chunker/nbt/tags/array/IntArrayTagTests.java @@ -10,6 +10,7 @@ import java.util.stream.Stream; import static org.junit.jupiter.api.Assertions.assertArrayEquals; +import static org.junit.jupiter.api.Assertions.assertEquals; /** * Tests for the IntArrayTag. @@ -46,4 +47,22 @@ protected void testLengthProtectionNamed() throws IOException { IntArrayTag tag = new IntArrayTag(new int[IntArrayTag.MAX_ARRAY_LENGTH + 1]); assertDecodeException(new TagWithName<>("hello", tag), IllegalArgumentException.class); } + + @Test + protected void testLength() throws IOException { + IntArrayTag tag = new IntArrayTag(new int[5]); + assertEquals(tag.length(), 5); + } + + @Test + protected void testLengthEmpty() throws IOException { + IntArrayTag tag = new IntArrayTag(new int[0]); + assertEquals(tag.length(), 0); + } + + @Test + protected void testLengthNull() throws IOException { + IntArrayTag tag = new IntArrayTag(); + assertEquals(tag.length(), 0); + } } diff --git a/cli/src/test/java/com/hivemc/chunker/nbt/tags/array/LongArrayTagTests.java b/cli/src/test/java/com/hivemc/chunker/nbt/tags/array/LongArrayTagTests.java index f39ab5f..d4a1f44 100644 --- a/cli/src/test/java/com/hivemc/chunker/nbt/tags/array/LongArrayTagTests.java +++ b/cli/src/test/java/com/hivemc/chunker/nbt/tags/array/LongArrayTagTests.java @@ -10,6 +10,7 @@ import java.util.stream.Stream; import static org.junit.jupiter.api.Assertions.assertArrayEquals; +import static org.junit.jupiter.api.Assertions.assertEquals; /** * Tests for the LongArrayTag. @@ -46,4 +47,22 @@ protected void testLengthProtectionNamed() throws IOException { LongArrayTag tag = new LongArrayTag(new long[LongArrayTag.MAX_ARRAY_LENGTH + 1]); assertDecodeException(new TagWithName<>("hello", tag), IllegalArgumentException.class); } + + @Test + protected void testLength() throws IOException { + LongArrayTag tag = new LongArrayTag(new long[5]); + assertEquals(tag.length(), 5); + } + + @Test + protected void testLengthEmpty() throws IOException { + LongArrayTag tag = new LongArrayTag(new long[0]); + assertEquals(tag.length(), 0); + } + + @Test + protected void testLengthNull() throws IOException { + LongArrayTag tag = new LongArrayTag(); + assertEquals(tag.length(), 0); + } } diff --git a/cli/src/test/java/com/hivemc/chunker/nbt/tags/collection/CompoundTagTests.java b/cli/src/test/java/com/hivemc/chunker/nbt/tags/collection/CompoundTagTests.java index f2d839c..12e707b 100644 --- a/cli/src/test/java/com/hivemc/chunker/nbt/tags/collection/CompoundTagTests.java +++ b/cli/src/test/java/com/hivemc/chunker/nbt/tags/collection/CompoundTagTests.java @@ -346,6 +346,31 @@ public void testGetList() { assertEquals(entry, compoundTag.getList("Test", IntTag.class)); } + @Test + public void testGetListDefaultLongArray() { + // Some versions of Java edition use a LongArray instead of an empty list tag, in this case it should return null + CompoundTag compoundTag = new CompoundTag(); + compoundTag.put("Test", new LongArrayTag(new long[0])); + assertNull(compoundTag.getList("Test", IntTag.class, null)); + } + + @Test + public void testGetListDefaultLongArrayEmpty() { + // Some versions of Java edition use a LongArray instead of an empty list tag, in this case it should return null + CompoundTag compoundTag = new CompoundTag(); + compoundTag.put("Test", new LongArrayTag()); + assertNull(compoundTag.getList("Test", IntTag.class, null)); + } + + @Test + public void testGetListDefaultLongArrayNotEmpty() { + // Some versions of Java edition use a LongArray instead of an empty list tag, in this case it should have an exception + // As it's not empty + CompoundTag compoundTag = new CompoundTag(); + compoundTag.put("Test", new LongArrayTag(new long[]{1})); + assertThrowsExactly(IllegalArgumentException.class, () -> compoundTag.getList("Test", IntTag.class, null)); + } + @Test public void testGetListMismatch() { CompoundTag compoundTag = new CompoundTag(); @@ -419,6 +444,31 @@ public void testGetListValuesDefaultNotFoundMismatch() { assertNull(compoundTag.getListValues("Test2", DoubleTag.class, null)); } + @Test + public void testGetListValuesDefaultLongArray() { + // Some versions of Java edition use a LongArray instead of an empty list tag, in this case it should return null + CompoundTag compoundTag = new CompoundTag(); + compoundTag.put("Test", new LongArrayTag(new long[0])); + assertNull(compoundTag.getListValues("Test", IntTag.class, null)); + } + + @Test + public void testGetListValuesDefaultLongArrayEmpty() { + // Some versions of Java edition use a LongArray instead of an empty list tag, in this case it should return null + CompoundTag compoundTag = new CompoundTag(); + compoundTag.put("Test", new LongArrayTag()); + assertNull(compoundTag.getListValues("Test", IntTag.class, null)); + } + + @Test + public void testGetListValuesDefaultLongArrayNotEmpty() { + // Some versions of Java edition use a LongArray instead of an empty list tag, in this case it should have an exception + // As it's not empty + CompoundTag compoundTag = new CompoundTag(); + compoundTag.put("Test", new LongArrayTag(new long[]{1})); + assertThrowsExactly(IllegalArgumentException.class, () -> compoundTag.getListValues("Test", IntTag.class, null)); + } + @Test public void testRemove() { CompoundTag compoundTag = new CompoundTag(); From f7957ceff3ab2fb1bb34f791d50a397041f034d4 Mon Sep 17 00:00:00 2001 From: HiveGames-OSS Date: Sun, 25 Aug 2024 17:39:13 +0100 Subject: [PATCH 06/23] Improve parsing to always use END for empty ListTags --- .../com/hivemc/chunker/nbt/tags/collection/CompoundTag.java | 4 ++-- .../com/hivemc/chunker/nbt/tags/collection/ListTag.java | 6 +++++- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/cli/src/main/java/com/hivemc/chunker/nbt/tags/collection/CompoundTag.java b/cli/src/main/java/com/hivemc/chunker/nbt/tags/collection/CompoundTag.java index 4b65f24..911a10e 100644 --- a/cli/src/main/java/com/hivemc/chunker/nbt/tags/collection/CompoundTag.java +++ b/cli/src/main/java/com/hivemc/chunker/nbt/tags/collection/CompoundTag.java @@ -655,7 +655,7 @@ public , V> ListTag getList(String name, Class listTag ListTag listTag = get(name, ListTag.class); if (listTag == null) throw new IllegalArgumentException("Could not access " + name); if (listTag.getListType() != TagType.END && listTag.getListType() != null && !Objects.equals(listTag.getListType().getTagClass(), listTagType)) { - throw new IllegalArgumentException("Unexpected list type " + name); + throw new IllegalArgumentException("Unexpected list type for " + name + " expected " + listTagType + " got " + listTag.getListType().getTagClass()); } return listTag; } @@ -691,7 +691,7 @@ public , V> ListTag getList(String name, Class listTag // Check the type of the list tag ListTag listTag = (ListTag) tag; if (listTag.getListType() != TagType.END && listTag.getListType() != null && !Objects.equals(listTag.getListType().getTagClass(), listTagType)) { - throw new IllegalArgumentException("Unexpected list type " + name); + throw new IllegalArgumentException("Unexpected list type for " + name + " expected " + listTagType + " got " + listTag.getListType().getTagClass()); } return listTag; } diff --git a/cli/src/main/java/com/hivemc/chunker/nbt/tags/collection/ListTag.java b/cli/src/main/java/com/hivemc/chunker/nbt/tags/collection/ListTag.java index 8d71a15..0872482 100644 --- a/cli/src/main/java/com/hivemc/chunker/nbt/tags/collection/ListTag.java +++ b/cli/src/main/java/com/hivemc/chunker/nbt/tags/collection/ListTag.java @@ -146,7 +146,7 @@ public void decodeValue(Reader reader) throws IOException { throw new IllegalArgumentException("Could not read list with length " + length); // Start reading - if (listType != TagType.END) { + if (listType != TagType.END && length > 0) { // Allocate array value = new ObjectArrayList<>(length); @@ -155,6 +155,10 @@ public void decodeValue(Reader reader) throws IOException { tag.decodeValue(reader); value.add(tag); } + } else { + // Always use END tag to indicate empty lists + // Older versions sometimes use BYTE + listType = (TagType) TagType.END; } } From bc4fd77e8b2c9eeee39abf819ce6011d9196f8ba Mon Sep 17 00:00:00 2001 From: HiveGames-OSS Date: Wed, 28 Aug 2024 11:26:41 +0100 Subject: [PATCH 07/23] Add further OOM check to startConversionRequest --- .../chunker/cli/messenger/Messenger.java | 21 ++++++++++++------- 1 file changed, 13 insertions(+), 8 deletions(-) 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 abefdfb..502bd10 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 @@ -384,14 +384,19 @@ public static boolean startConversionRequest(UUID sessionID, UUID taskID, WorldC throwable.printStackTrace(); } - // Tell the user there was an error - write(new ErrorResponse( - taskID, - false, - "A fatal error occurred during conversion.", - sessionID.toString(), - exception.get().getMessage() - )); + // Always exit if it's an OOM as the memory may not be recoverable + if (throwable instanceof OutOfMemoryError) { + System.exit(12); + } else { + // Tell the user there was an error + write(new ErrorResponse( + taskID, + false, + "A fatal error occurred during conversion.", + sessionID.toString(), + exception.get().getMessage() + )); + } } else if (worldConverter.isCancelled()) { write(new ErrorResponse(taskID, true, "The process was cancelled", null, null)); } else { From 5588f24e0a3707f6269e8c53d8f3bab2dd684066 Mon Sep 17 00:00:00 2001 From: HiveGames-OSS Date: Wed, 28 Aug 2024 14:50:27 +0100 Subject: [PATCH 08/23] Only use AppImage for linux --- app/electron/package.json | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/app/electron/package.json b/app/electron/package.json index e2560d0..ed7c8b5 100644 --- a/app/electron/package.json +++ b/app/electron/package.json @@ -28,6 +28,11 @@ "portable" ] }, + "linux": { + "target": [ + "AppImage" + ] + }, "extraResources": [ { "from": "../../cli/build/libs/packaged", From e34f8b075c2e9ad21e833afa9925a6f2e0d3a763 Mon Sep 17 00:00:00 2001 From: HiveGames-OSS Date: Wed, 28 Aug 2024 14:52:29 +0100 Subject: [PATCH 09/23] Version 1.0.1 --- 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 ed7c8b5..37a3018 100644 --- a/app/electron/package.json +++ b/app/electron/package.json @@ -1,6 +1,6 @@ { "name": "chunker-electron", - "version": "1.0.0", + "version": "1.0.1", "description": "Convert worlds between Java and Bedrock.", "private": true, "main": "src/index.js", diff --git a/app/package-lock.json b/app/package-lock.json index eb3691f..4f6ee21 100644 --- a/app/package-lock.json +++ b/app/package-lock.json @@ -21,7 +21,7 @@ }, "electron": { "name": "chunker-electron", - "version": "1.0.0", + "version": "1.0.1", "license": "MIT", "dependencies": { "archiver": "^7.0.1", diff --git a/cli/build.gradle.kts b/cli/build.gradle.kts index f376efd..b773834 100644 --- a/cli/build.gradle.kts +++ b/cli/build.gradle.kts @@ -36,7 +36,7 @@ dependencies { } group = "com.hivemc.chunker" -version = "1.0.0" +version = "1.0.1" description = "chunker" base.archivesName = "chunker-cli" java.sourceCompatibility = JavaVersion.VERSION_17 From 1663d645434e25788e483a7d376013bcbb55a16a Mon Sep 17 00:00:00 2001 From: HiveGames-OSS Date: Wed, 28 Aug 2024 15:38:04 +0100 Subject: [PATCH 10/23] Initial R21U3 support --- README.md | 2 +- app/ui/public/data/bedrock/R21_30.json | 311679 +++++++++++++++ .../src/components/screen/mode/modeOption.js | 2 +- cli/data/bedrock/1.21.30.0/block_states.json | 311679 +++++++++++++++ cli/data/bedrock/1.21.30.0/item_names.json | 6898 + .../encoding/bedrock/BedrockDataVersion.java | 1 + .../BedrockBlockIdentifierResolver.java | 38 + .../identifier/BedrockStateGroups.java | 23 +- ...BedrockBlockIdentifierValidationTests.java | 27 +- .../BedrockItemIdentifierValidationTests.java | 3 + 10 files changed, 630340 insertions(+), 12 deletions(-) create mode 100644 app/ui/public/data/bedrock/R21_30.json create mode 100644 cli/data/bedrock/1.21.30.0/block_states.json create mode 100644 cli/data/bedrock/1.21.30.0/item_names.json diff --git a/README.md b/README.md index 72ea38b..f924fb4 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.20 + - 1.21.0 - 1.21.30 - Java - 1.8.8 - 1.9.0 - 1.9.3 diff --git a/app/ui/public/data/bedrock/R21_30.json b/app/ui/public/data/bedrock/R21_30.json new file mode 100644 index 0000000..cc32d54 --- /dev/null +++ b/app/ui/public/data/bedrock/R21_30.json @@ -0,0 +1,311679 @@ +{ + "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:warped_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "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" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:fence_gate", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:fence_gate", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:fence_gate", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:fence_gate", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:fence_gate", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:fence_gate", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:fence_gate", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:fence_gate", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:fence_gate", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:fence_gate", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:fence_gate", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:fence_gate", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:fence_gate", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:fence_gate", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:fence_gate", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "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: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" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "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: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: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:mob_spawner", + "states" : [] + }, + { + "name" : "minecraft:polished_granite", + "states" : [] + }, + { + "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: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: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: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: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: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: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: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" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:wooden_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:wooden_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:wooden_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:wooden_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:wooden_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:wooden_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:wooden_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:wooden_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:wooden_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:wooden_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:wooden_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:wooden_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:wooden_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:wooden_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:wooden_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:wooden_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:wooden_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:wooden_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:wooden_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:wooden_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:wooden_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:wooden_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:wooden_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:wooden_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:wooden_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:wooden_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:wooden_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:wooden_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:wooden_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:wooden_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:wooden_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "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" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_fence_gate", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_fence_gate", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_fence_gate", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_fence_gate", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_fence_gate", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_fence_gate", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_fence_gate", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_fence_gate", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_fence_gate", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_fence_gate", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_fence_gate", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_fence_gate", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_fence_gate", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_fence_gate", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_fence_gate", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "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" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "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" : "stripped_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_wood", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "y" + }, + { + "name" : "stripped_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_wood", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "x" + }, + { + "name" : "stripped_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_wood", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "x" + }, + { + "name" : "stripped_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_wood", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "z" + }, + { + "name" : "stripped_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_wood", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "z" + }, + { + "name" : "stripped_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "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" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_fence_gate", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_fence_gate", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_fence_gate", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_fence_gate", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_fence_gate", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_fence_gate", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_fence_gate", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_fence_gate", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_fence_gate", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_fence_gate", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_fence_gate", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_fence_gate", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_fence_gate", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_fence_gate", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_fence_gate", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "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: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: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" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "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" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "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" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:iron_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:iron_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:iron_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:iron_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:iron_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:iron_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:iron_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:iron_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:iron_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:iron_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:iron_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:iron_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:iron_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:iron_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:iron_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:iron_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:iron_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:iron_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:iron_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:iron_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:iron_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:iron_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:iron_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:iron_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:iron_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:iron_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:iron_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:iron_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:iron_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:iron_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:iron_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "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" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_fence_gate", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_fence_gate", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_fence_gate", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_fence_gate", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_fence_gate", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_fence_gate", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_fence_gate", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_fence_gate", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_fence_gate", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_fence_gate", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_fence_gate", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_fence_gate", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_fence_gate", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_fence_gate", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_fence_gate", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "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" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_fence_gate", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_fence_gate", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_fence_gate", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_fence_gate", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_fence_gate", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_fence_gate", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_fence_gate", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_fence_gate", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_fence_gate", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_fence_gate", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_fence_gate", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_fence_gate", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_fence_gate", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_fence_gate", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_fence_gate", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "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" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "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" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:exposed_copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:exposed_copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:exposed_copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:exposed_copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:exposed_copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:exposed_copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:exposed_copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:exposed_copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:exposed_copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:exposed_copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:exposed_copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:exposed_copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:exposed_copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:exposed_copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:exposed_copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:exposed_copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:exposed_copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:exposed_copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:exposed_copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:exposed_copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:exposed_copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:exposed_copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:exposed_copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:exposed_copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:exposed_copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:exposed_copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:exposed_copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:exposed_copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:exposed_copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:exposed_copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:exposed_copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "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" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_fence_gate", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_fence_gate", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_fence_gate", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_fence_gate", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_fence_gate", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_fence_gate", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_fence_gate", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_fence_gate", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_fence_gate", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_fence_gate", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_fence_gate", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_fence_gate", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_fence_gate", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_fence_gate", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_fence_gate", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "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: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:skull", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:skull", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:skull", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:skull", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:skull", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:skull", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + } + ] + }, + { + "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" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_fence_gate", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_fence_gate", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_fence_gate", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_fence_gate", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_fence_gate", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_fence_gate", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_fence_gate", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_fence_gate", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_fence_gate", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_fence_gate", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_fence_gate", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_fence_gate", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_fence_gate", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_fence_gate", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_fence_gate", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "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" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_fence_gate", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_fence_gate", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_fence_gate", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_fence_gate", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_fence_gate", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_fence_gate", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_fence_gate", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_fence_gate", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_fence_gate", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_fence_gate", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_fence_gate", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_fence_gate", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_fence_gate", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_fence_gate", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_fence_gate", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "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: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" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_exposed_copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_exposed_copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_exposed_copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_exposed_copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_exposed_copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_exposed_copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_exposed_copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_exposed_copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_exposed_copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_exposed_copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_exposed_copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_exposed_copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_exposed_copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_exposed_copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_exposed_copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_exposed_copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_exposed_copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_exposed_copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_exposed_copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_exposed_copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_exposed_copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_exposed_copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_exposed_copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_exposed_copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_exposed_copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_exposed_copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_exposed_copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_exposed_copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_exposed_copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_exposed_copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_exposed_copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "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: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" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_fence", + "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: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: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: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" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_oxidized_copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_oxidized_copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_oxidized_copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_oxidized_copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_oxidized_copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_oxidized_copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_oxidized_copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_oxidized_copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_oxidized_copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_oxidized_copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_oxidized_copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_oxidized_copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_oxidized_copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_oxidized_copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_oxidized_copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_oxidized_copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_oxidized_copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_oxidized_copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_oxidized_copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_oxidized_copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_oxidized_copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_oxidized_copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_oxidized_copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_oxidized_copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_oxidized_copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_oxidized_copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_oxidized_copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_oxidized_copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_oxidized_copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_oxidized_copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_oxidized_copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "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" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "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: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: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:black_terracotta", + "states" : [] + }, + { + "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" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "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: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" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "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" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:weathered_copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:weathered_copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:weathered_copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:weathered_copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:weathered_copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:weathered_copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:weathered_copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:weathered_copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:weathered_copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:weathered_copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:weathered_copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:weathered_copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:weathered_copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:weathered_copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:weathered_copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:weathered_copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:weathered_copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:weathered_copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:weathered_copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:weathered_copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:weathered_copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:weathered_copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:weathered_copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:weathered_copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:weathered_copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:weathered_copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:weathered_copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:weathered_copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:weathered_copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:weathered_copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:weathered_copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "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: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" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_fence_gate", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_fence_gate", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_fence_gate", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_fence_gate", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_fence_gate", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_fence_gate", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_fence_gate", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_fence_gate", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_fence_gate", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_fence_gate", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_fence_gate", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_fence_gate", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_fence_gate", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_fence_gate", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_fence_gate", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "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: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: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: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" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_weathered_copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_weathered_copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_weathered_copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_weathered_copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_weathered_copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_weathered_copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_weathered_copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_weathered_copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_weathered_copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_weathered_copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_weathered_copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_weathered_copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_weathered_copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_weathered_copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_weathered_copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_weathered_copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_weathered_copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_weathered_copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_weathered_copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_weathered_copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_weathered_copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_weathered_copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_weathered_copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_weathered_copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_weathered_copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_weathered_copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_weathered_copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_weathered_copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_weathered_copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_weathered_copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_weathered_copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "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" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "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" : "stripped_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_wood", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "y" + }, + { + "name" : "stripped_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_wood", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "x" + }, + { + "name" : "stripped_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_wood", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "x" + }, + { + "name" : "stripped_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_wood", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "z" + }, + { + "name" : "stripped_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_wood", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "z" + }, + { + "name" : "stripped_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "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: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: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: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: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: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" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_fence_gate", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_fence_gate", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_fence_gate", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_fence_gate", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_fence_gate", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_fence_gate", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_fence_gate", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_fence_gate", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_fence_gate", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_fence_gate", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_fence_gate", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_fence_gate", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_fence_gate", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_fence_gate", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_fence_gate", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "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" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "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: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:lime_terracotta", + "states" : [] + }, + { + "name" : "minecraft:cherry_fence_gate", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_fence_gate", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_fence_gate", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_fence_gate", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_fence_gate", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_fence_gate", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_fence_gate", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_fence_gate", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_fence_gate", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_fence_gate", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_fence_gate", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_fence_gate", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_fence_gate", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_fence_gate", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_fence_gate", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_fence_gate", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "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" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oxidized_copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oxidized_copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oxidized_copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oxidized_copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oxidized_copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oxidized_copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oxidized_copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oxidized_copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oxidized_copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oxidized_copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oxidized_copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oxidized_copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oxidized_copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oxidized_copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oxidized_copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oxidized_copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oxidized_copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oxidized_copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oxidized_copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oxidized_copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oxidized_copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oxidized_copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oxidized_copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oxidized_copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oxidized_copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oxidized_copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oxidized_copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oxidized_copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oxidized_copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oxidized_copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oxidized_copper_door", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "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 3d69738..447ab9f 100644 --- a/app/ui/src/components/screen/mode/modeOption.js +++ b/app/ui/src/components/screen/mode/modeOption.js @@ -18,7 +18,7 @@ export class ModeOption extends Component { render() { let version = this.props.value.version ? this.props.value.version : getVersionName(this.props.type); let java = this.props.type.startsWith("JAVA_"); - let beta = (!java && version === "1.21.20") || (java && version === "1.21.0"); // Beta label + let beta = (!java && version === "1.21.30") || (java && version === "1.21.1"); // Beta label return (
{ // 1.21 public static final BedrockDataVersion V1_21_0 = register(685, 9, new Version(1, 21, 0)); public static final BedrockDataVersion V1_21_20 = register(712, 9, new Version(1, 21, 20)); + public static final BedrockDataVersion V1_21_30 = register(729, 9, new Version(1, 21, 30)); private final int protocolVersion; private final int storageVersion; diff --git a/cli/src/main/java/com/hivemc/chunker/conversion/encoding/bedrock/base/resolver/identifier/BedrockBlockIdentifierResolver.java b/cli/src/main/java/com/hivemc/chunker/conversion/encoding/bedrock/base/resolver/identifier/BedrockBlockIdentifierResolver.java index 9597f60..8404da7 100644 --- a/cli/src/main/java/com/hivemc/chunker/conversion/encoding/bedrock/base/resolver/identifier/BedrockBlockIdentifierResolver.java +++ b/cli/src/main/java/com/hivemc/chunker/conversion/encoding/bedrock/base/resolver/identifier/BedrockBlockIdentifierResolver.java @@ -2739,5 +2739,43 @@ public void registerMappings(Version version) { .build() )); } + + // R21U3 + if (version.isGreaterThanOrEqual(1, 21, 30)) { + // Walls got flattened + registerOverrideOutput(BlockMapping.of("minecraft:cobblestone_wall", ChunkerVanillaBlockType.COBBLESTONE_WALL, BedrockStateGroups.WALL)); + registerOverrideOutput(BlockMapping.group(ImmutableMultimap.builder() + .put("minecraft:andesite_wall", ChunkerVanillaBlockType.ANDESITE_WALL) + .put("minecraft:brick_wall", ChunkerVanillaBlockType.BRICK_WALL) + .put("minecraft:diorite_wall", ChunkerVanillaBlockType.DIORITE_WALL) + .put("minecraft:end_stone_brick_wall", ChunkerVanillaBlockType.END_STONE_BRICK_WALL) + .put("minecraft:granite_wall", ChunkerVanillaBlockType.GRANITE_WALL) + .put("minecraft:mossy_cobblestone_wall", ChunkerVanillaBlockType.MOSSY_COBBLESTONE_WALL) + .put("minecraft:mossy_stone_brick_wall", ChunkerVanillaBlockType.MOSSY_STONE_BRICK_WALL) + .put("minecraft:nether_brick_wall", ChunkerVanillaBlockType.NETHER_BRICK_WALL) + .put("minecraft:prismarine_wall", ChunkerVanillaBlockType.PRISMARINE_WALL) + .put("minecraft:red_nether_brick_wall", ChunkerVanillaBlockType.RED_NETHER_BRICK_WALL) + .put("minecraft:red_sandstone_wall", ChunkerVanillaBlockType.RED_SANDSTONE_WALL) + .put("minecraft:sandstone_wall", ChunkerVanillaBlockType.SANDSTONE_WALL) + .put("minecraft:stone_brick_wall", ChunkerVanillaBlockType.STONE_BRICK_WALL) + .build(), + BedrockStateGroups.WALL)); + + // Sponge got flattened + registerOverrideInputOutput(BlockMapping.of("minecraft:sponge", ChunkerVanillaBlockType.SPONGE)); + registerOverrideOutput(BlockMapping.of("minecraft:wet_sponge", ChunkerVanillaBlockType.WET_SPONGE)); + + // TNT got flattened + register(BlockMapping.of("minecraft:underwater_tnt", ChunkerVanillaBlockType.TNT, BedrockStateGroups.TNT, VanillaBlockStates.UNDERWATER, Bool.TRUE)); + + // Purpur got flattened + registerOverrideOutput(BlockMapping.of("minecraft:purpur_block", "pillar_axis", "y", ChunkerVanillaBlockType.PURPUR_BLOCK)); + registerDuplicateOverrideInput(BlockMapping.of("minecraft:purpur_block", ChunkerVanillaBlockType.PURPUR_BLOCK)); + registerOverrideOutput(BlockMapping.of("minecraft:purpur_pillar", ChunkerVanillaBlockType.PURPUR_PILLAR, BedrockStateGroups.PILLAR_BLOCK)); + + // Deprecated purpur variants + registerDuplicateOutput(BlockMapping.of("minecraft:deprecated_purpur_block_1", ChunkerVanillaBlockType.PURPUR_BLOCK)); + registerDuplicateOutput(BlockMapping.of("minecraft:deprecated_purpur_block_2", ChunkerVanillaBlockType.PURPUR_BLOCK)); + } } } 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 dc88d81..e8213da 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 @@ -810,16 +810,29 @@ public class BedrockStateGroups { public static final StateMappingGroup STRUCTURE_BLOCK = new StateMappingGroup.Builder() .state("structure_block_type", VanillaBlockStates.STRUCTURE_BLOCK_MODE, BedrockStateTypes.STRUCTURE_BLOCK_MODE) .build(); - public static final StateMappingGroup STRUCTURE_VOID = new StateMappingGroup.Builder() - .state("structure_void_type", VanillaBlockStates.STRUCTURE_VOID_TYPE, BedrockStateTypes.STRUCTURE_VOID_TYPE) + public static final VersionedStateMappingGroup STRUCTURE_VOID = new VersionedStateMappingGroup.Builder() + .defaults(new StateMappingGroup.Builder() + .state("structure_void_type", VanillaBlockStates.STRUCTURE_VOID_TYPE, BedrockStateTypes.STRUCTURE_VOID_TYPE) + .build()) + // 1.21.30 removed structure_void_type + .version(new Version(1, 21, 30), new StateMappingGroup.Builder() + .defaultOutput(VanillaBlockStates.STRUCTURE_VOID_TYPE, StructureVoidType.VOID) + .build()) .build(); public static final StateMappingGroup SUSPICIOUS_BLOCK = new StateMappingGroup.Builder() .state("brushed_progress", VanillaBlockStates.DUSTED, BedrockStateTypes.BRUSHED_PROGRESS) .defaultInput("hanging", false) .build(); - public static final StateMappingGroup TNT = new StateMappingGroup.Builder() - .state("explode_bit", VanillaBlockStates.UNSTABLE, BedrockStateTypes.BOOL) - .state("allow_underwater_bit", VanillaBlockStates.UNDERWATER, BedrockStateTypes.BOOL) + public static final VersionedStateMappingGroup TNT = new VersionedStateMappingGroup.Builder() + .defaults(new StateMappingGroup.Builder() + .state("explode_bit", VanillaBlockStates.UNSTABLE, BedrockStateTypes.BOOL) + .state("allow_underwater_bit", VanillaBlockStates.UNDERWATER, BedrockStateTypes.BOOL) + .build()) + // 1.21.30 moved allow_underwater_bit to an identifier + .version(new Version(1, 21, 30), new StateMappingGroup.Builder() + .state("explode_bit", VanillaBlockStates.UNSTABLE, BedrockStateTypes.BOOL) + .defaultOutput(VanillaBlockStates.UNDERWATER, Bool.FALSE) + .build()) .build(); public static final StateMappingGroup TORCHFLOWER_CROP = new StateMappingGroup.Builder() .state("growth", VanillaBlockStates.AGE_1, BedrockStateTypes.AGE_7_TO_1) diff --git a/cli/src/test/java/com/hivemc/chunker/conversion/bedrock/resolver/BedrockBlockIdentifierValidationTests.java b/cli/src/test/java/com/hivemc/chunker/conversion/bedrock/resolver/BedrockBlockIdentifierValidationTests.java index 716a11d..3deb311 100644 --- a/cli/src/test/java/com/hivemc/chunker/conversion/bedrock/resolver/BedrockBlockIdentifierValidationTests.java +++ b/cli/src/test/java/com/hivemc/chunker/conversion/bedrock/resolver/BedrockBlockIdentifierValidationTests.java @@ -71,8 +71,16 @@ public class BedrockBlockIdentifierValidationTests { "minecraft:border_block", "minecraft:chemical_heat", "minecraft:chemistry_table", + "minecraft:lab_table", + "minecraft:material_reducer", + "minecraft:element_constructor", + "minecraft:compound_creator", "minecraft:colored_torch_bp", "minecraft:colored_torch_rg", + "minecraft:colored_torch_blue", + "minecraft:colored_torch_green", + "minecraft:colored_torch_purple", + "minecraft:colored_torch_red", "minecraft:hard_glass", "minecraft:hard_glass_pane", "minecraft:hard_stained_glass", @@ -428,13 +436,15 @@ public static Identifier removeLossyStates(Identifier input) { clonedStates.remove("minecraft:pillar_axis"); } } - if (input.getIdentifier().equals("minecraft:purpur_block") && clonedStates.containsKey("chisel_type")) { - // Both these states just use the normal block - clonedStates.replace("chisel_type", new StateValueString("smooth"), new StateValueString("default")); - clonedStates.replace("chisel_type", new StateValueString("chiseled"), new StateValueString("default")); + if (input.getIdentifier().equals("minecraft:purpur_block")) { + if (clonedStates.containsKey("chisel_type")) { + // Both these states just use the normal block + clonedStates.replace("chisel_type", new StateValueString("smooth"), new StateValueString("default")); + clonedStates.replace("chisel_type", new StateValueString("chiseled"), new StateValueString("default")); + } // Unless the purpur_block is lines then the direction isn't visible - if (!clonedStates.get("chisel_type").equals(new StateValueString("lines"))) { + if (!clonedStates.containsKey("chisel_type") || !clonedStates.get("chisel_type").equals(new StateValueString("lines"))) { clonedStates.remove("pillar_axis"); clonedStates.remove("direction"); } @@ -448,6 +458,13 @@ public static Identifier removeLossyStates(Identifier input) { clonedStates.remove("direction"); } } + if (input.getIdentifier().contains("minecraft:deprecated_purpur_block_")) { + input = new Identifier("minecraft:purpur_block", input.getStates()); + + // Remove rotation + clonedStates.remove("pillar_axis"); + clonedStates.remove("direction"); + } if (input.getIdentifier().contains("minecraft:deprecated_anvil")) { input = new Identifier("minecraft:damaged_anvil", input.getStates()); } diff --git a/cli/src/test/java/com/hivemc/chunker/conversion/bedrock/resolver/BedrockItemIdentifierValidationTests.java b/cli/src/test/java/com/hivemc/chunker/conversion/bedrock/resolver/BedrockItemIdentifierValidationTests.java index a472c11..8845b0a 100644 --- a/cli/src/test/java/com/hivemc/chunker/conversion/bedrock/resolver/BedrockItemIdentifierValidationTests.java +++ b/cli/src/test/java/com/hivemc/chunker/conversion/bedrock/resolver/BedrockItemIdentifierValidationTests.java @@ -80,6 +80,9 @@ public class BedrockItemIdentifierValidationTests { "minecraft:light_block", "minecraft:monster_egg", "minecraft:stonebrick", + "minecraft:colored_torch_bp", + "minecraft:colored_torch_rg", + "minecraft:chemistry_table", // Not Used "minecraft:firefly_spawn_egg", From 760539d63091b1f050c651e121cc558153754be9 Mon Sep 17 00:00:00 2001 From: HiveGames-OSS Date: Fri, 30 Aug 2024 09:49:04 +0100 Subject: [PATCH 11/23] Rename x64 to x86 for release builds --- .github/workflows/release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 89027f8..137d4ac 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -162,7 +162,7 @@ jobs: - name: Compress Windows CLI run: | - cd artifacts && zip -r "chunker-cli-windows-x64.zip" "chunker-cli" && cd .. + cd artifacts && zip -r "chunker-cli-windows-x86.zip" "chunker-cli" && cd .. rm -rf "artifacts/chunker-cli" - name: Rename exe files @@ -170,7 +170,7 @@ jobs: for file in artifacts/*.exe; do base_name="${file#artifacts/Chunker }" base_name="${base_name%.exe}" - mv "$file" "artifacts/Chunker-${base_name}-windows-x64.exe" + mv "$file" "artifacts/Chunker-${base_name}-windows-x86.exe" done - name: Download Mac artifact From 922f8a5de0171d43e1924bb88d331687413edd03 Mon Sep 17 00:00:00 2001 From: HiveGames-OSS Date: Fri, 30 Aug 2024 08:46:36 +0000 Subject: [PATCH 12/23] Bump axios from 1.7.2 to 1.7.5 in /app Bumps [axios](https://github.com/axios/axios) from 1.7.2 to 1.7.5. - [Release notes](https://github.com/axios/axios/releases) - [Changelog](https://github.com/axios/axios/blob/v1.x/CHANGELOG.md) - [Commits](https://github.com/axios/axios/compare/v1.7.2...v1.7.5) --- app/package-lock.json | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/app/package-lock.json b/app/package-lock.json index 4f6ee21..f86e5b3 100644 --- a/app/package-lock.json +++ b/app/package-lock.json @@ -6092,11 +6092,10 @@ } }, "node_modules/axios": { - "version": "1.7.2", - "resolved": "https://registry.npmjs.org/axios/-/axios-1.7.2.tgz", - "integrity": "sha512-2A8QhOMrbomlDuiLeK9XibIBzuHeRcqqNOHp0Cyp5EoJ1IFDh+XZH3A6BkXtv0K4gFGCI0Y4BM7B1wOEi0Rmgw==", + "version": "1.7.5", + "resolved": "https://registry.npmjs.org/axios/-/axios-1.7.5.tgz", + "integrity": "sha512-fZu86yCo+svH3uqJ/yTdQ0QHpQu5oL+/QE+QPSv6BZSkDAoky9vytxp7u5qk83OJFS3kEBcesWni9WTZAv3tSw==", "dev": true, - "license": "MIT", "dependencies": { "follow-redirects": "^1.15.6", "form-data": "^4.0.0", From 6935e2e539e9e4ba0657777bb09f08eb15990754 Mon Sep 17 00:00:00 2001 From: HiveGames-OSS Date: Wed, 28 Aug 2024 13:46:37 +0000 Subject: [PATCH 13/23] Bump gradle/actions from 4.0.0 to 4.0.1 Bumps [gradle/actions](https://github.com/gradle/actions) from 4.0.0 to 4.0.1. - [Release notes](https://github.com/gradle/actions/releases) - [Commits](https://github.com/gradle/actions/compare/af1da67850ed9a4cedd57bfd976089dd991e2582...16bf8bc8fe830fa669c3c9f914d3eb147c629707) --- .github/workflows/build_platform.yml | 6 +++--- .github/workflows/build_test_linux.yml | 2 +- .github/workflows/dependency-submission.yml | 2 +- .github/workflows/release.yml | 6 +++--- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/build_platform.yml b/.github/workflows/build_platform.yml index af72795..63abb79 100644 --- a/.github/workflows/build_platform.yml +++ b/.github/workflows/build_platform.yml @@ -35,7 +35,7 @@ jobs: distribution: 'temurin' - name: Setup Gradle - uses: gradle/actions/setup-gradle@af1da67850ed9a4cedd57bfd976089dd991e2582 # v4 + uses: gradle/actions/setup-gradle@16bf8bc8fe830fa669c3c9f914d3eb147c629707 # v4 - name: Mark Gradle as Executable run: chmod +x gradlew @@ -71,7 +71,7 @@ jobs: distribution: 'temurin' - name: Setup Gradle - uses: gradle/actions/setup-gradle@af1da67850ed9a4cedd57bfd976089dd991e2582 # v4 + uses: gradle/actions/setup-gradle@16bf8bc8fe830fa669c3c9f914d3eb147c629707 # v4 - name: Build with Gradle Wrapper run: ./gradlew build -x test @@ -113,7 +113,7 @@ jobs: distribution: 'temurin' - name: Setup Gradle - uses: gradle/actions/setup-gradle@af1da67850ed9a4cedd57bfd976089dd991e2582 # v4 + uses: gradle/actions/setup-gradle@16bf8bc8fe830fa669c3c9f914d3eb147c629707 # v4 - name: Mark Gradle as Executable run: chmod +x gradlew diff --git a/.github/workflows/build_test_linux.yml b/.github/workflows/build_test_linux.yml index b29da69..4ff273d 100644 --- a/.github/workflows/build_test_linux.yml +++ b/.github/workflows/build_test_linux.yml @@ -24,7 +24,7 @@ jobs: distribution: 'temurin' - name: Setup Gradle - uses: gradle/actions/setup-gradle@af1da67850ed9a4cedd57bfd976089dd991e2582 # v4 + uses: gradle/actions/setup-gradle@16bf8bc8fe830fa669c3c9f914d3eb147c629707 # v4 - name: Mark Gradle as Executable run: chmod +x gradlew diff --git a/.github/workflows/dependency-submission.yml b/.github/workflows/dependency-submission.yml index 64db59a..9af7bb3 100644 --- a/.github/workflows/dependency-submission.yml +++ b/.github/workflows/dependency-submission.yml @@ -24,4 +24,4 @@ jobs: distribution: 'temurin' - name: Generate and submit dependency graph - uses: gradle/actions/dependency-submission@af1da67850ed9a4cedd57bfd976089dd991e2582 # v4.0.0 + uses: gradle/actions/dependency-submission@16bf8bc8fe830fa669c3c9f914d3eb147c629707 # v4.0.1 diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 137d4ac..4500891 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -27,7 +27,7 @@ jobs: distribution: 'temurin' - name: Setup Gradle - uses: gradle/actions/setup-gradle@af1da67850ed9a4cedd57bfd976089dd991e2582 # v4 + uses: gradle/actions/setup-gradle@16bf8bc8fe830fa669c3c9f914d3eb147c629707 # v4 - name: Mark Gradle as Executable run: chmod +x gradlew @@ -62,7 +62,7 @@ jobs: distribution: 'temurin' - name: Setup Gradle - uses: gradle/actions/setup-gradle@af1da67850ed9a4cedd57bfd976089dd991e2582 # v4 + uses: gradle/actions/setup-gradle@16bf8bc8fe830fa669c3c9f914d3eb147c629707 # v4 - name: Build with Gradle Wrapper run: ./gradlew build -x test @@ -103,7 +103,7 @@ jobs: distribution: 'temurin' - name: Setup Gradle - uses: gradle/actions/setup-gradle@af1da67850ed9a4cedd57bfd976089dd991e2582 # v4 + uses: gradle/actions/setup-gradle@16bf8bc8fe830fa669c3c9f914d3eb147c629707 # v4 - name: Mark Gradle as Executable run: chmod +x gradlew From 94aae4899d34bf1087c6cb77e8f4a026df86a49c Mon Sep 17 00:00:00 2001 From: HiveGames-OSS Date: Wed, 28 Aug 2024 14:28:06 +0000 Subject: [PATCH 14/23] Bump electron from 31.3.1 to 32.0.1 in /app Bumps [electron](https://github.com/electron/electron) from 31.3.1 to 32.0.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/v31.3.1...v32.0.1) --- 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 37a3018..60f2bc5 100644 --- a/app/electron/package.json +++ b/app/electron/package.json @@ -14,7 +14,7 @@ "author": "Hive Games Limited", "license": "MIT", "devDependencies": { - "electron": "31.3.1", + "electron": "32.0.1", "electron-builder": "24.13.3", "git-last-commit": "^1.0.1" }, diff --git a/app/package-lock.json b/app/package-lock.json index f86e5b3..eb3d23c 100644 --- a/app/package-lock.json +++ b/app/package-lock.json @@ -31,7 +31,7 @@ "jszip": "^3.10.1" }, "devDependencies": { - "electron": "31.3.1", + "electron": "32.0.1", "electron-builder": "24.13.3", "git-last-commit": "^1.0.1" } @@ -8679,9 +8679,9 @@ } }, "node_modules/electron": { - "version": "31.3.1", - "resolved": "https://registry.npmjs.org/electron/-/electron-31.3.1.tgz", - "integrity": "sha512-9fiuWlRhBfygtcT+auRd/WdBK/f8LZZcrpx0RjpXhH2DPTP/PfnkC4JB1PW55qCbGbh4wAgkYbf4ExIag8oGCA==", + "version": "32.0.1", + "resolved": "https://registry.npmjs.org/electron/-/electron-32.0.1.tgz", + "integrity": "sha512-5Hd5Jaf9niYVR2hZxoRd3gOrcxPOxQV1XPV5WaoSfT9jLJHFadhlKtuSDIk3U6rQZke+aC7GqPPAv55nWFCMsA==", "dev": true, "hasInstallScript": true, "dependencies": { From d27dccc028c955826e875efb3d0b5a69f3ca285a Mon Sep 17 00:00:00 2001 From: HiveGames-OSS Date: Wed, 28 Aug 2024 14:28:27 +0000 Subject: [PATCH 15/23] Bump chroma-js from 2.6.0 to 3.0.0 in /app Bumps [chroma-js](https://github.com/gka/chroma.js) from 2.6.0 to 3.0.0. - [Release notes](https://github.com/gka/chroma.js/releases) - [Changelog](https://github.com/gka/chroma.js/blob/main/CHANGELOG.md) - [Commits](https://github.com/gka/chroma.js/compare/v2.6.0...v3.0.0) --- app/package-lock.json | 8 ++++---- app/ui/package.json | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/app/package-lock.json b/app/package-lock.json index eb3d23c..c79f524 100644 --- a/app/package-lock.json +++ b/app/package-lock.json @@ -7021,9 +7021,9 @@ } }, "node_modules/chroma-js": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/chroma-js/-/chroma-js-2.6.0.tgz", - "integrity": "sha512-BLHvCB9s8Z1EV4ethr6xnkl/P2YRFOGqfgvuMG/MyCbZPrTA+NeiByY6XvgF0zP4/2deU2CXnWyMa3zu1LqQ3A==" + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/chroma-js/-/chroma-js-3.0.0.tgz", + "integrity": "sha512-ZFn4qxtZTvRJ7XatOLgaHGJYN10LoS6T0EMsu7IVayFG5+b6Yw8wCGQL5qLgo4B+wrRZ9niCrozOQ4a584bvaA==" }, "node_modules/chrome-trace-event": { "version": "1.0.4", @@ -21917,7 +21917,7 @@ "@fortawesome/free-solid-svg-icons": "^6.6.0", "@fortawesome/react-fontawesome": "^0.2.2", "base64-arraybuffer": "^1.0.2", - "chroma-js": "^2.6.0", + "chroma-js": "^3.0.0", "file-saver": "^2.0.5", "jszip": "^3.10.1", "leaflet": "^1.9.4", diff --git a/app/ui/package.json b/app/ui/package.json index 93a9eb6..deaa459 100644 --- a/app/ui/package.json +++ b/app/ui/package.json @@ -15,7 +15,7 @@ "@fortawesome/free-solid-svg-icons": "^6.6.0", "@fortawesome/react-fontawesome": "^0.2.2", "base64-arraybuffer": "^1.0.2", - "chroma-js": "^2.6.0", + "chroma-js": "^3.0.0", "file-saver": "^2.0.5", "jszip": "^3.10.1", "leaflet": "^1.9.4", From f79a4908fea1bfed8da2175d9313126c5685b5d6 Mon Sep 17 00:00:00 2001 From: HiveGames-OSS Date: Wed, 28 Aug 2024 14:28:39 +0000 Subject: [PATCH 16/23] Bump react-router-dom from 6.26.0 to 6.26.1 in /app Bumps [react-router-dom](https://github.com/remix-run/react-router/tree/HEAD/packages/react-router-dom) from 6.26.0 to 6.26.1. - [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@6.26.1/packages/react-router-dom) --- app/package-lock.json | 26 +++++++++++++------------- app/ui/package.json | 2 +- 2 files changed, 14 insertions(+), 14 deletions(-) diff --git a/app/package-lock.json b/app/package-lock.json index c79f524..1156902 100644 --- a/app/package-lock.json +++ b/app/package-lock.json @@ -3989,9 +3989,9 @@ } }, "node_modules/@remix-run/router": { - "version": "1.19.0", - "resolved": "https://registry.npmjs.org/@remix-run/router/-/router-1.19.0.tgz", - "integrity": "sha512-zDICCLKEwbVYTS6TjYaWtHXxkdoUvD/QXvyVZjGCsWz5vyH7aFeONlPffPdW+Y/t6KT0MgXb2Mfjun9YpWN1dA==", + "version": "1.19.1", + "resolved": "https://registry.npmjs.org/@remix-run/router/-/router-1.19.1.tgz", + "integrity": "sha512-S45oynt/WH19bHbIXjtli6QmwNYvaz+vtnubvNpNDvUOoA/OWh6j1OikIP3G+v5GHdxyC6EXoChG3HgYGEUfcg==", "engines": { "node": ">=14.0.0" } @@ -17433,11 +17433,11 @@ } }, "node_modules/react-router": { - "version": "6.26.0", - "resolved": "https://registry.npmjs.org/react-router/-/react-router-6.26.0.tgz", - "integrity": "sha512-wVQq0/iFYd3iZ9H2l3N3k4PL8EEHcb0XlU2Na8nEwmiXgIUElEH6gaJDtUQxJ+JFzmIXaQjfdpcGWaM6IoQGxg==", + "version": "6.26.1", + "resolved": "https://registry.npmjs.org/react-router/-/react-router-6.26.1.tgz", + "integrity": "sha512-kIwJveZNwp7teQRI5QmwWo39A5bXRyqpH0COKKmPnyD2vBvDwgFXSqDUYtt1h+FEyfnE8eXr7oe0MxRzVwCcvQ==", "dependencies": { - "@remix-run/router": "1.19.0" + "@remix-run/router": "1.19.1" }, "engines": { "node": ">=14.0.0" @@ -17447,12 +17447,12 @@ } }, "node_modules/react-router-dom": { - "version": "6.26.0", - "resolved": "https://registry.npmjs.org/react-router-dom/-/react-router-dom-6.26.0.tgz", - "integrity": "sha512-RRGUIiDtLrkX3uYcFiCIxKFWMcWQGMojpYZfcstc63A1+sSnVgILGIm9gNUA6na3Fm1QuPGSBQH2EMbAZOnMsQ==", + "version": "6.26.1", + "resolved": "https://registry.npmjs.org/react-router-dom/-/react-router-dom-6.26.1.tgz", + "integrity": "sha512-veut7m41S1fLql4pLhxeSW3jlqs+4MtjRLj0xvuCEXsxusJCbs6I8yn9BxzzDX2XDgafrccY6hwjmd/bL54tFw==", "dependencies": { - "@remix-run/router": "1.19.0", - "react-router": "6.26.0" + "@remix-run/router": "1.19.1", + "react-router": "6.26.1" }, "engines": { "node": ">=14.0.0" @@ -21926,7 +21926,7 @@ "leaflet-mouse-position": "^1.2.0", "react": "^18.3.1", "react-dom": "^18.3.1", - "react-router-dom": "^6.26.0", + "react-router-dom": "^6.26.1", "react-scripts": "^5.0.1", "react-select": "^5.8.0", "react-syntax-highlighter": "^15.5.0", diff --git a/app/ui/package.json b/app/ui/package.json index deaa459..ad04cff 100644 --- a/app/ui/package.json +++ b/app/ui/package.json @@ -24,7 +24,7 @@ "leaflet-mouse-position": "^1.2.0", "react": "^18.3.1", "react-dom": "^18.3.1", - "react-router-dom": "^6.26.0", + "react-router-dom": "^6.26.1", "react-scripts": "^5.0.1", "react-select": "^5.8.0", "react-syntax-highlighter": "^15.5.0", From 7c40b781a174fcc46f491ea8c5636fda0a3b164f Mon Sep 17 00:00:00 2001 From: HiveGames-OSS Date: Wed, 28 Aug 2024 15:27:07 +0000 Subject: [PATCH 17/23] Bump com.google.guava:guava from 33.2.1-jre to 33.3.0-jre Bumps [com.google.guava:guava](https://github.com/google/guava) from 33.2.1-jre to 33.3.0-jre. - [Release notes](https://github.com/google/guava/releases) - [Commits](https://github.com/google/guava/commits) --- 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 d6ff573..d0a0e54 100644 --- a/gradle/libs.versions.toml +++ b/gradle/libs.versions.toml @@ -5,7 +5,7 @@ picocli = "4.7.6" caffeine = "3.1.8" gson = "2.11.0" -guava = "33.2.1-jre" +guava = "33.3.0-jre" leveldb = "1.0.0" leveldb-api = "1.0.0" fastutil = "8.5.14" From e62d153ea9672e70e1dc7a17d32f6974b02142a7 Mon Sep 17 00:00:00 2001 From: HiveGames-OSS Date: Fri, 30 Aug 2024 10:27:23 +0100 Subject: [PATCH 18/23] Bump wait-on from 7.2.0 to 8.0.0 in /app --- app/package-lock.json | 12 ++++++------ app/package.json | 2 +- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/app/package-lock.json b/app/package-lock.json index 1156902..bd569e3 100644 --- a/app/package-lock.json +++ b/app/package-lock.json @@ -10,7 +10,7 @@ "devDependencies": { "concurrently": "^8.2.2", "cross-env": "^7.0.3", - "wait-on": "^7.2.0" + "wait-on": "^8.0.0" }, "workspaces": { "packages": [ @@ -20843,14 +20843,14 @@ } }, "node_modules/wait-on": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/wait-on/-/wait-on-7.2.0.tgz", - "integrity": "sha512-wCQcHkRazgjG5XoAq9jbTMLpNIjoSlZslrJ2+N9MxDsGEv1HnFoVjOCexL0ESva7Y9cu350j+DWADdk54s4AFQ==", + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/wait-on/-/wait-on-8.0.0.tgz", + "integrity": "sha512-fNE5SXinLr2Bt7cJvjvLg2PcXfqznlqRvtE3f8AqYdRZ9BhE+XpsCp1mwQbRoO7s1q7uhAuCw0Ro3mG/KdZjEw==", "dev": true, "license": "MIT", "dependencies": { - "axios": "^1.6.1", - "joi": "^17.11.0", + "axios": "^1.7.4", + "joi": "^17.13.3", "lodash": "^4.17.21", "minimist": "^1.2.8", "rxjs": "^7.8.1" diff --git a/app/package.json b/app/package.json index a42d372..f18b0dc 100644 --- a/app/package.json +++ b/app/package.json @@ -17,6 +17,6 @@ "devDependencies": { "concurrently": "^8.2.2", "cross-env": "^7.0.3", - "wait-on": "^7.2.0" + "wait-on": "^8.0.0" } } From 2faf3246d29a5d2fc32a11433a30eaa4d7e36e95 Mon Sep 17 00:00:00 2001 From: HiveGames-OSS Date: Fri, 30 Aug 2024 10:58:56 +0100 Subject: [PATCH 19/23] Migrate selectWorldScreen to new electron get path method --- app/electron/src/preload.js | 3 ++- .../screen/select/selectWorldScreen.js | 19 +++++++++++-------- 2 files changed, 13 insertions(+), 9 deletions(-) diff --git a/app/electron/src/preload.js b/app/electron/src/preload.js index 036d12e..d4e6d60 100644 --- a/app/electron/src/preload.js +++ b/app/electron/src/preload.js @@ -1,7 +1,8 @@ -const {contextBridge, ipcRenderer} = require("electron"); +const {contextBridge, ipcRenderer, webUtils} = require("electron"); const versionInfo = ipcRenderer.sendSync("versionInfo"); contextBridge.exposeInMainWorld("chunker", { + getPathForFile: webUtils.getPathForFile, version: versionInfo.version, gitVersion: versionInfo.git, platform: versionInfo.platform, diff --git a/app/ui/src/components/screen/select/selectWorldScreen.js b/app/ui/src/components/screen/select/selectWorldScreen.js index 19b5b3e..629ac27 100644 --- a/app/ui/src/components/screen/select/selectWorldScreen.js +++ b/app/ui/src/components/screen/select/selectWorldScreen.js @@ -19,7 +19,8 @@ export class SelectWorldScreen extends BaseScreen { progress: 0, animated: false, selected: undefined, - fileBlob: undefined, + filePath: undefined, + filePathDirectory: undefined, processing: false, processingPercentage: 0, dragging: false, @@ -80,17 +81,19 @@ export class SelectWorldScreen extends BaseScreen { for (let i = 0; i < files.length; i++) { let file = files[i]; if (file.path.endsWith("level.dat")) { - level = file.file.path.substring(0, file.file.path.lastIndexOf("level.dat")); + let fullPath = window.chunker.getPathForFile(file.file); + level = fullPath.substring(0, fullPath.lastIndexOf("level.dat")); } } if (level) { - self.setState({fileBlob: {path: level}, processing: false}); + self.setState({filePath: level, filePathDirectory: true, processing: false}); } else { this.app.showError("Invalid World", "The folder you selected did not contain a level.dat, please ensure you're using a Minecraft world folder.", null, true); this.setState({selected: false, detecting: false, processing: false}); } } else { - this.setState({selected: files[0].path.split('/')[1], fileBlob: files[0].file}); + let fullPath = window.chunker.getPathForFile(files[0].file); + this.setState({selected: files[0].path.split('/')[1], filePath: fullPath, filePathDirectory: false}); } }; @@ -211,9 +214,9 @@ export class SelectWorldScreen extends BaseScreen { // Do request let self = this; - // Check selected type - let name = this.state.fileBlob.name; - if (name !== undefined && !name.endsWith(".zip") && !name.endsWith(".mcworld")) { + // Check selected type (if it's a file) + let name = this.state.filePath; + if (!this.state.filePathDirectory && !name.endsWith(".zip") && !name.endsWith(".mcworld")) { self.app.showError("Failed to load world", "Only .zip and .mcworld files can be used.", undefined, false); return; } @@ -223,7 +226,7 @@ export class SelectWorldScreen extends BaseScreen { api.send({ type: "flow", method: "select_world", - path: self.state.fileBlob.path, + path: self.state.filePath, }, (message) => { if (message.type === "response") { // Update session From 49f3cc4aac990a473095063faa18a6e3cc4b3528 Mon Sep 17 00:00:00 2001 From: HiveGames-OSS Date: Fri, 30 Aug 2024 12:05:01 +0100 Subject: [PATCH 20/23] Improve environment to always call free() --- .../chunker/conversion/WorldConverter.java | 18 +++++++---- .../chunker/scheduling/task/Environment.java | 30 ++++++++++++++++++- 2 files changed, 42 insertions(+), 6 deletions(-) diff --git a/cli/src/main/java/com/hivemc/chunker/conversion/WorldConverter.java b/cli/src/main/java/com/hivemc/chunker/conversion/WorldConverter.java index 4b27f75..230075f 100644 --- a/cli/src/main/java/com/hivemc/chunker/conversion/WorldConverter.java +++ b/cli/src/main/java/com/hivemc/chunker/conversion/WorldConverter.java @@ -567,19 +567,27 @@ public TrackedTask convert(@NotNull LevelReader reader, @NotNull LevelWrit environment.close(); // Close indicates that we're done scheduling the base tasks // Ensure free is called for the reader & writer (always) - environment.future().whenComplete((output, error) -> { + environment.setFreeCallback(() -> { // Free reader try { reader.free(); - } catch (Exception e) { - logNonFatalException(e); + } catch (Throwable e) { + try { + logNonFatalException(e); + } catch (Throwable e2) { + // We tried, this is likely an OOM + } } // Free writer try { writer.free(); - } catch (Exception e) { - logNonFatalException(e); + } catch (Throwable e) { + try { + logNonFatalException(e); + } catch (Throwable e2) { + // We tried, this is likely an OOM + } } }); } diff --git a/cli/src/main/java/com/hivemc/chunker/scheduling/task/Environment.java b/cli/src/main/java/com/hivemc/chunker/scheduling/task/Environment.java index 02be7ff..b9897f3 100644 --- a/cli/src/main/java/com/hivemc/chunker/scheduling/task/Environment.java +++ b/cli/src/main/java/com/hivemc/chunker/scheduling/task/Environment.java @@ -2,6 +2,7 @@ import com.google.common.base.Preconditions; import com.hivemc.chunker.scheduling.task.executor.TaskExecutor; +import com.hivemc.chunker.util.SneakyThrows; import org.jetbrains.annotations.Nullable; import java.io.Closeable; @@ -15,6 +16,7 @@ public class Environment extends TrackedTask implements Closeable { private final TaskExecutor executor; private CompletableFuture future; + private Runnable onFree; /** * Create an environment and start threads relating to the environment. @@ -47,7 +49,19 @@ public void close() { executor.clearCurrentThreadExecutor(); // Schedule call to free - future().thenRun(this::free); + future = future.handle((input, throwable) -> { + // Free resources after children have completed + free(); + + // Re-throw any error, we've free'd our resources + if (throwable != null) { + // Print the exception + SneakyThrows.throwException(throwable); + } + + // Return the input for the next function + return input; + }); } @Override @@ -92,10 +106,24 @@ public CompletableFuture future() { @Override protected void free() { + // Call onFree + if (onFree != null) { + onFree.run(); + } + // Call super super.free(); // Close down thread-pool executor.shutdown(); } + + /** + * Set the callback which is used when the environment is closed before returning any result. + * + * @param onFree the runnable to call in the free() method. + */ + public void setFreeCallback(@Nullable Runnable onFree) { + this.onFree = onFree; + } } From d99553ed49eb03bf867d5e13d210441d3803e787 Mon Sep 17 00:00:00 2001 From: HiveGames-OSS Date: Fri, 30 Aug 2024 13:49:17 +0100 Subject: [PATCH 21/23] Ensure settings isn't running before conversion / fix cancellation logic This stems from an issue where you could convert while settings were being extracted from a world. --- app/ui/src/components/app.js | 6 ++- .../screen/processing/processingScreen.js | 28 +++++----- .../chunker/cli/messenger/Messenger.java | 53 ++++++++++++------- .../chunker/conversion/WorldConverter.java | 9 +++- .../chunker/scheduling/task/Environment.java | 15 +++--- 5 files changed, 69 insertions(+), 42 deletions(-) diff --git a/app/ui/src/components/app.js b/app/ui/src/components/app.js index d242468..35f6e48 100644 --- a/app/ui/src/components/app.js +++ b/app/ui/src/components/app.js @@ -216,9 +216,11 @@ export class App extends Component { })); }; - cancelTask = () => { + cancelTask = (callback) => { api.send({type: "flow", method: "cancel"}, function (message) { - // Ignored + if (callback) { + callback(); + } }); }; diff --git a/app/ui/src/components/screen/processing/processingScreen.js b/app/ui/src/components/screen/processing/processingScreen.js index c1b94c1..c9108d1 100644 --- a/app/ui/src/components/screen/processing/processingScreen.js +++ b/app/ui/src/components/screen/processing/processingScreen.js @@ -33,20 +33,24 @@ export class ProcessingScreen extends BaseScreen { nextScreen = () => this.app.setScreen(SaveScreen); convert = () => { + // Setup conversion let self = this; - // Set world settings (after it chains the next part) - api.send({ - type: "settings", - method: "set_world_settings", - settings: self.app.state.editedSettings - }, function (message) { - if (message.type === "error") { - console.info("Failed to set settings: " + message.error); - self.app.showError("Failed to set world settings", message.error, message.errorId, false); - } else { - self.convertSetName(); - } + // Cancel any existing tasks, they aren't needed and this ensures all locks are free for the input world + this.app.cancelTask(function() { + // Set world settings (after it chains the next part) + api.send({ + type: "settings", + method: "set_world_settings", + settings: self.app.state.editedSettings + }, function (message) { + if (message.type === "error") { + console.info("Failed to set settings: " + message.error); + self.app.showError("Failed to set world settings", message.error, message.errorId, false); + } else { + self.convertSetName(); + } + }); }); }; 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 502bd10..ffaee5a 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 @@ -31,6 +31,7 @@ import java.io.IOException; import java.util.*; import java.util.concurrent.CancellationException; +import java.util.concurrent.CompletableFuture; import java.util.concurrent.CompletionException; /** @@ -241,12 +242,19 @@ public static void main(String[] args) { // Loop through all the converters under this anonymous ID and cancel them Map converters = SESSION_ID_TO_WORLD_CONVERTERS.get(killRequest.getAnonymousId()); if (converters != null) { + List> futures = new ArrayList<>(); for (WorldConverter worldConverter : converters.values()) { - worldConverter.cancel(null); + futures.add(worldConverter.cancel(null)); } + + // Ensure all futures have completed + CompletableFuture.allOf(futures.toArray(new CompletableFuture[0])).whenComplete((ex, result) -> { + write(new OutputResponse(message.getRequestId(), new JsonPrimitive(true))); + }); + } else { + // Mark as successful + write(new OutputResponse(message.getRequestId(), new JsonPrimitive(true))); } - // Mark as successful - write(new OutputResponse(message.getRequestId(), new JsonPrimitive(true))); } default -> // Not supported write(new ErrorResponse( @@ -371,7 +379,7 @@ public static boolean startConversionRequest(UUID sessionID, UUID taskID, WorldC TaskMonitorThread taskMonitorThread = new TaskMonitorThread(environment, (progress) -> write(new ProgressResponse(taskID, progress)), (exception) -> { - if (exception.isPresent() && !(exception.get() instanceof CancellationException)) { + if (exception.isPresent()) { Throwable throwable = exception.get(); // Unwrap completion exception @@ -379,23 +387,28 @@ public static boolean startConversionRequest(UUID sessionID, UUID taskID, WorldC throwable = throwable.getCause(); } - // Report if it wasn't logged - if (!(throwable instanceof LoggedException)) { - throwable.printStackTrace(); - } - - // Always exit if it's an OOM as the memory may not be recoverable - if (throwable instanceof OutOfMemoryError) { - System.exit(12); + // Check that it isn't a cancellation + if (throwable instanceof CancellationException) { + write(new ErrorResponse(taskID, true, "The process was cancelled", null, null)); } else { - // Tell the user there was an error - write(new ErrorResponse( - taskID, - false, - "A fatal error occurred during conversion.", - sessionID.toString(), - exception.get().getMessage() - )); + // Report if it wasn't logged + if (!(throwable instanceof LoggedException)) { + throwable.printStackTrace(); + } + + // Always exit if it's an OOM as the memory may not be recoverable + if (throwable instanceof OutOfMemoryError) { + System.exit(12); + } else { + // Tell the user there was an error + write(new ErrorResponse( + taskID, + false, + "A fatal error occurred during conversion.", + sessionID.toString(), + exception.get().getMessage() + )); + } } } else if (worldConverter.isCancelled()) { write(new ErrorResponse(taskID, true, "The process was cancelled", null, null)); diff --git a/cli/src/main/java/com/hivemc/chunker/conversion/WorldConverter.java b/cli/src/main/java/com/hivemc/chunker/conversion/WorldConverter.java index 230075f..0079d9b 100644 --- a/cli/src/main/java/com/hivemc/chunker/conversion/WorldConverter.java +++ b/cli/src/main/java/com/hivemc/chunker/conversion/WorldConverter.java @@ -35,6 +35,7 @@ import java.util.Map; import java.util.Optional; import java.util.UUID; +import java.util.concurrent.CompletableFuture; import java.util.function.Consumer; /** @@ -598,13 +599,19 @@ public TrackedTask convert(@NotNull LevelReader reader, @NotNull LevelWrit * Cancel the conversion task. * * @param fatalException an exception to use as the reason for the future. + * @return the environment future which is complete when the environment has fully cancelled. */ - public void cancel(@Nullable Throwable fatalException) { + public CompletableFuture cancel(@Nullable Throwable fatalException) { cancelled = true; // Cancel the environment with the exception if (environment != null) { environment.cancel(fatalException); + + // Return the future for the environment (useful for waiting) + return environment.future(); + } else { + return CompletableFuture.completedFuture(null); } } diff --git a/cli/src/main/java/com/hivemc/chunker/scheduling/task/Environment.java b/cli/src/main/java/com/hivemc/chunker/scheduling/task/Environment.java index b9897f3..5f2b413 100644 --- a/cli/src/main/java/com/hivemc/chunker/scheduling/task/Environment.java +++ b/cli/src/main/java/com/hivemc/chunker/scheduling/task/Environment.java @@ -15,6 +15,7 @@ */ public class Environment extends TrackedTask implements Closeable { private final TaskExecutor executor; + private CompletableFuture childFuture; private CompletableFuture future; private Runnable onFree; @@ -42,14 +43,14 @@ protected void start() { @Override public void close() { - // Record the future - future = waitForChildren(null).toCompletableFuture(); + // Record the child future + childFuture = waitForChildren(null).toCompletableFuture(); // Clear executor executor.clearCurrentThreadExecutor(); - // Schedule call to free - future = future.handle((input, throwable) -> { + // Schedule call to free after the child future + future = childFuture.handle((input, throwable) -> { // Free resources after children have completed free(); @@ -80,11 +81,11 @@ public void cancel(@Nullable Throwable exception) { executor.shutdown(); } finally { if (exception != null) { - // Complete the future with an exception - future.completeExceptionally(exception); + // Complete the child future with an exception + childFuture.completeExceptionally(exception); } else { // Cancel - future.cancel(true); + childFuture.cancel(true); } } } From 84b06028b091cb7e6bc7e6dfa1004aa5694da8c5 Mon Sep 17 00:00:00 2001 From: HiveGames-OSS Date: Fri, 30 Aug 2024 14:08:01 +0100 Subject: [PATCH 22/23] Ensure consistent ordering to EncodingType --- .../hivemc/chunker/conversion/encoding/EncodingType.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/cli/src/main/java/com/hivemc/chunker/conversion/encoding/EncodingType.java b/cli/src/main/java/com/hivemc/chunker/conversion/encoding/EncodingType.java index 3e7e6c8..74fc2df 100644 --- a/cli/src/main/java/com/hivemc/chunker/conversion/encoding/EncodingType.java +++ b/cli/src/main/java/com/hivemc/chunker/conversion/encoding/EncodingType.java @@ -8,7 +8,7 @@ import com.hivemc.chunker.conversion.encoding.java.JavaEncoders; import com.hivemc.chunker.conversion.encoding.preview.PreviewLevelWriter; import com.hivemc.chunker.conversion.encoding.settings.SettingsLevelWriter; -import it.unimi.dsi.fastutil.objects.ObjectOpenHashSet; +import it.unimi.dsi.fastutil.objects.ObjectLinkedOpenHashSet; import java.io.File; import java.util.Collection; @@ -21,9 +21,9 @@ */ public class EncodingType { // Lookups - private static final Set TYPES = new ObjectOpenHashSet<>(); - private static final Set READABLE_TYPES = new ObjectOpenHashSet<>(); - private static final Set WRITEABLE_TYPES = new ObjectOpenHashSet<>(); + private static final Set TYPES = new ObjectLinkedOpenHashSet<>(); + private static final Set READABLE_TYPES = new ObjectLinkedOpenHashSet<>(); + private static final Set WRITEABLE_TYPES = new ObjectLinkedOpenHashSet<>(); /** * Reader and Writer for the Java Edition format. From 38e24365d2742771d9cc053d732d049349eea3b1 Mon Sep 17 00:00:00 2001 From: HiveGames-OSS Date: Sat, 31 Aug 2024 15:32:11 +0200 Subject: [PATCH 23/23] 1.1.0 --- 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 60f2bc5..36f62aa 100644 --- a/app/electron/package.json +++ b/app/electron/package.json @@ -1,6 +1,6 @@ { "name": "chunker-electron", - "version": "1.0.1", + "version": "1.1.0", "description": "Convert worlds between Java and Bedrock.", "private": true, "main": "src/index.js", diff --git a/app/package-lock.json b/app/package-lock.json index bd569e3..faf4e5a 100644 --- a/app/package-lock.json +++ b/app/package-lock.json @@ -21,7 +21,7 @@ }, "electron": { "name": "chunker-electron", - "version": "1.0.1", + "version": "1.1.0", "license": "MIT", "dependencies": { "archiver": "^7.0.1", diff --git a/cli/build.gradle.kts b/cli/build.gradle.kts index b773834..c1eb104 100644 --- a/cli/build.gradle.kts +++ b/cli/build.gradle.kts @@ -36,7 +36,7 @@ dependencies { } group = "com.hivemc.chunker" -version = "1.0.1" +version = "1.1.0" description = "chunker" base.archivesName = "chunker-cli" java.sourceCompatibility = JavaVersion.VERSION_17